home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Ultimedia 1
/
Ultimedia 1.iso
/
tools
/
soundtools
/
playsid
/
preview.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-04-16
|
616b
|
36 lines
/*
* PlaySID: Preview example:
*
* rx preview "filename"
*
* or
*
* preview.rexx "filename"
*
*/
if(~show('l', 'rexxsupport.library'))then do
if(~addlib( 'rexxsupport.library', 0, -30, 0))then do
say "Could not open ARexx support library."
exit 10
end
end
parse arg name
address command "run SID:PlaySID"
say "Loading"
if SID_Load(name) then do
numtunes = SID_NumTunes()
say "Found" numtunes "tunes"
do tune = 1 to numtunes
say "Playing tune" tune
SID_SetTune(tune)
SID_Play()
Delay(5 * 50)
end
say "Stopped"
SID_Stop()
end
SID_Quit()